home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / editors / emcs1857 / 1857sr~1.zoo / src / fileio.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-02  |  62.0 KB  |  2,478 lines

  1. /* File IO for GNU Emacs.
  2.    Copyright (C) 1985, 1986, 1987, 1988, 1990, 1991
  3.         Free Software Foundation, Inc.
  4.  
  5. This file is part of GNU Emacs.
  6.  
  7. GNU Emacs is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 1, or (at your option)
  10. any later version.
  11.  
  12. GNU Emacs is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU Emacs; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. /**
  22.  **  (sjk++)  we need the fcntl flags on the ST.
  23.  **/
  24. #ifdef atarist
  25. #include <fcntl.h>
  26. #endif
  27.  
  28. /* Modified 1991 for 8-bit character support by Howard Gayle.
  29.  *  See chartab.c for details. */
  30.  
  31.  
  32. #include <sys/types.h>
  33. #ifdef hpux
  34. /* needed by <pwd.h> */
  35. #include <stdio.h>
  36. #undef NULL
  37. #endif
  38. #include <sys/stat.h>
  39. #include <pwd.h>
  40. #include <ctype.h>
  41. #include <sys/dir.h>
  42. #include <errno.h>
  43.  
  44. #ifndef VMS
  45. extern int errno;
  46. extern char *sys_errlist[];
  47. extern int sys_nerr;
  48. #endif
  49.  
  50. #define err_str(a) ((a) < sys_nerr ? sys_errlist[a] : "unknown error")
  51.  
  52. #ifdef APOLLO
  53. #include <sys/time.h>
  54. #endif
  55.  
  56. #ifdef NULL
  57. #undef NULL
  58. #endif
  59. #include "config.h"
  60. #include "lisp.h"
  61. #include "buffer.h"
  62. #include "transtab.h"
  63. #include "window.h"
  64.  
  65. #ifdef VMS
  66. #include <perror.h>
  67. #include <file.h>
  68. #include <rmsdef.h>
  69. #include <fab.h>
  70. #include <nam.h>
  71. #endif
  72.  
  73. #ifdef HAVE_TIMEVAL
  74. #ifdef HPUX
  75. #include <time.h>
  76. #else
  77. #include <sys/time.h>
  78. #endif
  79. #endif
  80.  
  81. #ifdef HPUX
  82. #include <netio.h>
  83. #include <errnet.h>
  84. #endif
  85.  
  86. #ifndef O_WRONLY
  87. #define O_WRONLY 1
  88. #endif
  89.  
  90. #define min(a, b) ((a) < (b) ? (a) : (b))
  91. #define max(a, b) ((a) > (b) ? (a) : (b))
  92.  
  93. /* Nonzero during writing of auto-save files */
  94. int auto_saving;
  95.  
  96. /* Nonzero means, when reading a filename in the minibuffer,
  97.  start out by inserting the default directory into the minibuffer. */
  98. int insert_default_directory;
  99.  
  100. /* On VMS, nonzero means write new files with record format stmlf.
  101.    Zero means use var format.  */
  102. int vms_stmlf_recfm;
  103.  
  104. Lisp_Object Qfile_error, Qfile_already_exists;
  105.  
  106. report_file_error (string, data)
  107.      char *string;
  108.      Lisp_Object data;
  109. {
  110.   Lisp_Object errstring;
  111.  
  112.   if (errno >= 0 && errno < sys_nerr)
  113.     errstring = build_string (sys_errlist[errno]);
  114.   else
  115.     errstring = build_string ("undocumented error code");
  116.  
  117.   /* System error messages are capitalized.  Downcase the initial. */
  118.   XSTRING (errstring)->data[0] = DOWNCASE (XSTRING (errstring)->data[0]);
  119.  
  120.   while (1)
  121.     Fsignal (Qfile_error,
  122.          Fcons (build_string (string), Fcons (errstring, data)));
  123. }
  124.  
  125. DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory,
  126.   1, 1, 0,
  127.   "Return the directory component in file name NAME.\n\
  128. Return nil if NAME does not include a directory.\n\
  129. Otherwise returns a directory spec.\n\
  130. Given a Unix syntax file name, returns a string ending in slash;\n\
  131. on VMS, perhaps instead a string ending in :, ] or >.")
  132.   (file)
  133.      Lisp_Object file;
  134. {
  135.   register unsigned char *beg;
  136.   register unsigned char *p;
  137.  
  138.   CHECK_STRING (file, 0);
  139.  
  140.   beg = XSTRING (file)->data;
  141.   p = beg + XSTRING (file)->size;
  142.  
  143.   while (p != beg && p[-1] != '/'
  144. #ifdef VMS
  145.      && p[-1] != ':' && p[-1] != ']' && p[-1] != '>'
  146. #endif /* VMS */
  147.      ) p--;
  148.  
  149.   if (p == beg)
  150.     return Qnil;
  151.   return make_string (beg, p - beg);
  152. }
  153.  
  154. DEFUN ("file-name-nondirectory", Ffile_name_nondirectory, Sfile_name_nondirectory,
  155.   1, 1, 0,
  156.   "Return file name NAME sans its directory.\n\
  157. For example, in a Unix-syntax file name,\n\
  158. this is everything after the last slash,\n\
  159. or the entire name if it contains no slash.")
  160.   (file)
  161.      Lisp_Object file;
  162. {
  163.   register unsigned char *beg, *p, *end;
  164.  
  165.   CHECK_STRING (file, 0);
  166.  
  167.   beg = XSTRING (file)->data;
  168.   end = p = beg + XSTRING (file)->size;
  169.  
  170.   while (p != beg && p[-1] != '/'
  171. #ifdef VMS
  172.      && p[-1] != ':' && p[-1] != ']' && p[-1] != '>'
  173. #endif /* VMS */
  174.      ) p--;
  175.  
  176.   return make_string (p, end - p);
  177. }
  178.  
  179. char *
  180. file_name_as_directory (out, in)
  181.      char *out, *in;
  182. {
  183.   int size = strlen (in) - 1;
  184.  
  185.   strcpy (out, in);
  186.  
  187. #ifdef VMS
  188.   /* Is it already a directory string? */
  189.   if (in[size] == ':' || in[size] == ']' || in[size] == '>')
  190.     return out;
  191.   /* Is it a VMS directory file name?  If so, hack VMS syntax.  */
  192.   else if (! index (in, '/')
  193.        && ((size > 3 && ! strcmp (&in[size - 3], ".DIR"))
  194.            || (size > 3 && ! strcmp (&in[size - 3], ".dir"))
  195.            || (size > 5 && (! strncmp (&in[size - 5], ".DIR", 4)
  196.                 || ! strncmp (&in[size - 5], ".dir", 4))
  197.            && (in[size - 1] == '.' || in[size - 1] == ';')
  198.            && in[size] == '1')))
  199.     {
  200.       register char *p, *dot;
  201.       char brack;
  202.  
  203.       /* x.dir -> [.x]
  204.      dir:x.dir --> dir:[x]
  205.      dir:[x]y.dir --> dir:[x.y] */
  206.       p = in + size;
  207.       while (p != in && *p != ':' && *p != '>' && *p != ']') p--;
  208.       if (p != in)
  209.     {
  210.       strncpy (out, in, p - in);
  211.       out[p - in] = '\0';
  212.       if (*p == ':')
  213.         {
  214.           brack = ']';
  215.           strcat (out, ":[");
  216.         }
  217.       else
  218.         {
  219.           brack = *p;
  220.           strcat (out, ".");
  221.         }
  222.       p++;
  223.     }
  224.       else
  225.     {
  226.       brack = ']';
  227.       strcpy (out, "[.");
  228.     }
  229.       if (dot = index (p, '.'))
  230.     {
  231.       /* blindly remove any extension */
  232.       size = strlen (out) + (dot - p);
  233.       strncat (out, p, dot - p);
  234.     }
  235.       else
  236.     {
  237.       strcat (out, p);
  238.       size = strlen (out);
  239.     }
  240.       out[size++] = brack;
  241.       out[size] = '\0';
  242.     }
  243. #else /* not VMS */
  244.   /* For Unix syntax, Append a slash if necessary */
  245.   if (out[size] != '/')
  246.     strcat (out, "/");
  247. #endif /* not VMS */
  248.   return out;
  249. }
  250.  
  251. DEFUN ("file-name-as-directory", Ffile_name_as_directory,
  252.        Sfile_name_as_directory, 1, 1, 0,
  253.   "Return a string representing file FILENAME interpreted as a directory.\n\
  254. This string can be used as the value of default-directory\n\
  255. or passed as second argument to expand-file-name.\n\
  256. For a Unix-syntax file name, just appends a slash.\n\
  257. On VMS, converts \"[X]FOO.DIR\" to \"[X.FOO]\", etc.")
  258.   (file)
  259.      Lisp_Object file;
  260. {
  261.   char *buf;
  262.  
  263.   CHECK_STRING (file, 0);
  264.   if (NULL (file))
  265.     return Qnil;
  266.   buf = (char *) alloca (XSTRING (file)->size + 10);
  267.   return build_string (file_name_as_directory (buf, XSTRING (file)->data));
  268. }
  269.  
  270. /*
  271.  * Convert from directory name to filename.
  272.  * On VMS:
  273.  *       xyzzy:[mukesh.emacs] => xyzzy:[mukesh]emacs.dir.1
  274.  *       xyzzy:[mukesh] => xyzzy:[000000]mukesh.dir.1
  275.  * On UNIX, it's simple: just make sure there is a terminating /
  276.  
  277.  * Value is nonzero if the string output is different from the input.
  278.  */
  279.  
  280. directory_file_name (src, dst)
  281.      char *src, *dst;
  282. {
  283.   long slen;
  284. #ifdef VMS
  285.   long rlen;
  286.   char * ptr, * rptr;
  287.   char bracket;
  288.   struct FAB fab = cc$rms_fab;
  289.   struct NAM nam = cc$rms_nam;
  290.   char esa[NAM$C_MAXRSS];
  291. #endif /* VMS */
  292.  
  293.   slen = strlen (src) - 1;
  294. #ifdef VMS
  295.   if (! index (src, '/')
  296.       && (src[slen] == ']' || src[slen] == ':' || src[slen] == '>'))
  297.     {
  298.       /* VMS style - convert [x.y.z] to [x.y]z, [x] to [000000]x */
  299.       fab.fab$l_fna = src;
  300.       fab.fab$b_fns = slen + 1;
  301.       fab.fab$l_nam = &nam;
  302.       fab.fab$l_fop = FAB$M_NAM;
  303.  
  304.       nam.nam$l_esa = esa;
  305.       nam.nam$b_ess = sizeof esa;
  306.       nam.nam$b_nop |= NAM$M_SYNCHK;
  307.  
  308.       /* We call SYS$PARSE to handle such things as [--] for us. */
  309.       if (SYS$PARSE(&fab, 0, 0) == RMS$_NORMAL)
  310.     {
  311.       slen = nam.nam$b_esl - 1;
  312.       if (esa[slen] == ';' && esa[slen - 1] == '.')
  313.         slen -= 2;
  314.       esa[slen + 1] = '\0';
  315.       src = esa;
  316.     }
  317.       if (src[slen] != ']' && src[slen] != '>')
  318.     {
  319.       /* what about when we have logical_name:???? */
  320.       if (src[slen] == ':')
  321.         {            /* Xlate logical name and see what we get */
  322.           ptr = strcpy (dst, src); /* upper case for getenv */
  323.           while (*ptr)
  324.         {
  325.           if ('a' <= *ptr && *ptr <= 'z')
  326.             *ptr -= 040;
  327.           ptr++;
  328.         }
  329.           dst[slen] = 0;    /* remove colon */
  330.           if (!(src = egetenv (dst)))
  331.         return 0;
  332.           /* should we jump to the beginning of this procedure?
  333.          Good points: allows us to use logical names that xlate
  334.          to Unix names,
  335.          Bad points: can be a problem if we just translated to a device
  336.          name...
  337.          For now, I'll punt and always expect VMS names, and hope for
  338.          the best! */
  339.           slen = strlen (src) - 1;
  340.           if (src[slen] != ']' && src[slen] != '>')
  341.         { /* no recursion here! */
  342.           strcpy (dst, src);
  343.           return 0;
  344.         }
  345.         }
  346.       else
  347.         {        /* not a directory spec */
  348.           strcpy (dst, src);
  349.           return 0;
  350.         }
  351.     }
  352.       bracket = src[slen];
  353.       if (!(ptr = index (src, bracket - 2)))
  354.     { /* no opening bracket */
  355.       strcpy (dst, src);
  356.       return 0;
  357.     }
  358.       if (!(rptr = rindex (src, '.')))
  359.     rptr = ptr;
  360.       slen = rptr - src;
  361.       strncpy (dst, src, slen);
  362.       dst[slen] = '\0';
  363.       if (*rptr == '.')
  364.     {
  365.       dst[slen++] = bracket;
  366.       dst[slen] = '\0';
  367.     }
  368.       else
  369.     {
  370.       /* If we have the top-level of a rooted directory (i.e. xx:[000000]),
  371.          then translate the device and recurse. */
  372.       if (dst[slen - 1] == ':'
  373.           && dst[slen - 2] != ':'    /* skip decnet nodes */
  374.           && strcmp(src + slen, "[000000]") == 0)
  375.         {
  376.           dst[slen - 1] = '\0';
  377.           if ((ptr = egetenv (dst))
  378.           && (rlen = strlen (ptr) - 1) > 0
  379.           && (ptr[rlen] == ']' || ptr[rlen] == '>')
  380.           && ptr[rlen - 1] == '.')
  381.         {
  382.           ptr[rlen - 1] = ']';
  383.           ptr[rlen] = '\0';
  384.           return directory_file_name (ptr, dst);
  385.         }
  386.           else
  387.         dst[slen - 1] = ':';
  388.         }
  389.       strcat (dst, "[000000]");
  390.       slen += 8;
  391.     }
  392.       rptr++;
  393.       rlen = strlen (rptr) - 1;
  394.       strncat (dst, rptr, rlen);
  395.       dst[slen + rlen] = '\0';
  396.       strcat (dst, ".DIR.1");
  397.       return 1;
  398.     }
  399. #endif /* VMS */
  400.   /* Process as Unix format: just remove any final slash.
  401.      But leave "/" unchanged; do not change it to "".  */
  402.   strcpy (dst, src);
  403. /**
  404.  **  (sjk++) check for ?:/ ad a device 
  405.  **/
  406. #ifdef atarist
  407.   if (dst[slen] == '/' && (slen > 1 && dst[1] != ':' || slen > 3))
  408. #else
  409.   if (dst[slen] == '/' && slen > 1)
  410. #endif
  411.  
  412.     dst[slen] = 0;
  413.   return 1;
  414. }
  415.  
  416. DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name,
  417.   1, 1, 0,
  418.   "Returns the file name of the directory named DIR.\n\
  419. This is the name of the file that holds the data for the directory DIR.\n\
  420. In Unix-syntax, this just removes the final slash.\n\
  421. On VMS, given a VMS-syntax directory name such as \"[X.Y]\",\n\
  422. returns a file name such as \"[X]Y.DIR.1\".")
  423.   (directory)
  424.      Lisp_Object directory;
  425. {
  426.   char *buf;
  427.  
  428.   CHECK_STRING (directory, 0);
  429.  
  430.   if (NULL (directory))
  431.     return Qnil;
  432. #ifdef VMS
  433.   /* 20 extra chars is insufficient for VMS, since we might perform a
  434.      logical name translation. an equivalence string can be up to 255
  435.      chars long, so grab that much extra space...  - sss */
  436.   buf = (char *) alloca (XSTRING (directory)->size + 20 + 255);
  437. #else
  438.   buf = (char *) alloca (XSTRING (directory)->size + 20);
  439. #endif
  440.   directory_file_name (XSTRING (directory)->data, buf);
  441.   return build_string (buf);
  442. }
  443.  
  444. DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0,
  445.   "Generate temporary name (string) starting with PREFIX (a string).")
  446.   (prefix)
  447.      Lisp_Object prefix;
  448. {
  449.   Lisp_Object val;
  450. /**
  451.  **  (sjk++) Shorten up the temp name.
  452.  **/
  453. #ifdef atarist
  454.   val = concat2 (prefix, build_string ("XX"));
  455. #else
  456.   val = concat2 (prefix, build_string ("XXXXXX"));
  457. #endif
  458. mktemp (XSTRING (val)->data);
  459.   return val;
  460. }
  461.  
  462. DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
  463.   "Convert FILENAME to absolute, and canonicalize it.\n\
  464. Second arg DEFAULT is directory to start with if FILENAME is relative\n\
  465.  (does not start with slash); if DEFAULT is nil or missing,\n\
  466. the current buffer's value of default-directory is used.\n\
  467. Filenames containing . or .. as components are simplified;\n\
  468. initial ~ is expanded.  See also the function  substitute-in-file-name.")
  469.      (name, defalt)
  470.      Lisp_Object name, defalt;
  471. {
  472.   unsigned char *nm;
  473.   
  474.   register unsigned char *newdir, *p, *o;
  475. /**
  476.  **  (sjk++) buffer for dos2unix/unix2dos
  477.  **/
  478. #ifdef atarist
  479.   unsigned char unxdir[128];
  480. #endif /* atarist */
  481.  
  482.   int tlen;
  483.   unsigned char *target;
  484.   struct passwd *pw;
  485.   int lose;
  486. #ifdef VMS
  487.   unsigned char * colon = 0;
  488.   unsigned char * close = 0;
  489.   unsigned char * slash = 0;
  490.   unsigned char * brack = 0;
  491.   int lbrack = 0, rbrack = 0;
  492.   int dots = 0;
  493. #endif /* VMS */
  494.   
  495.   CHECK_STRING (name, 0);
  496.  
  497. #ifdef VMS
  498.   /* Filenames on VMS are always upper case.  */
  499.   name = Fupcase (name);
  500. #endif
  501.  
  502.   nm = XSTRING (name)->data;
  503.   
  504.   /* If nm is absolute, flush ...// and detect /./ and /../.
  505.      If no /./ or /../ we can return right away. */
  506.   if (
  507.       nm[0] == '/'
  508. /**
  509.  **  (sjk++) check for ?:/ ad a device 
  510.  **/
  511. #ifdef atarist
  512.       || isalpha(nm[0]) && nm[1] == ':'
  513. #endif /* atarist */
  514. #ifdef VMS
  515.       || index (nm, ':')
  516. #endif /* VMS */
  517.       )
  518.     {
  519.       p = nm;
  520.       lose = 0;
  521.       while (*p)
  522.     {
  523.       if (p[0] == '/' && p[1] == '/'
  524. #ifdef APOLLO
  525.           /* // at start of filename is meaningful on Apollo system */
  526.           && nm != p
  527. #endif /* APOLLO */
  528.           )
  529.         nm = p + 1;
  530.       if (p[0] == '/' && p[1] == '~')
  531.         nm = p + 1, lose = 1;
  532. /**
  533.  **  (sjk++) check for ?:/ ad a device 
  534.  **/
  535. #ifdef atarist
  536.       if (p[0] == '/' && isalpha(p[1]) && p[2] == ':')
  537.         nm = p + 1, lose = 1;
  538. #endif /* atarist */
  539.       if (p[0] == '/' && p[1] == '.'
  540.           && (p[2] == '/' || p[2] == 0
  541.           || (p[2] == '.' && (p[3] == '/' || p[3] == 0))))
  542.         lose = 1;
  543. #ifdef VMS
  544.       if (p[0] == '\\')
  545.         lose = 1;
  546.       if (p[0] == '/') {
  547.         /* if dev:[dir]/, move nm to / */
  548.         if (!slash && p > nm && (brack || colon)) {
  549.           nm = (brack ? brack + 1 : colon + 1);
  550.           lbrack = rbrack = 0;
  551.           brack = 0;
  552.           colon = 0;
  553.         }
  554.         slash = p;
  555.       }
  556.       if (p[0] == '-')
  557. #ifndef VMS4_4
  558.         /* VMS pre V4.4,convert '-'s in filenames. */
  559.         if (lbrack == rbrack)
  560.           {
  561.         if (dots < 2)    /* this is to allow negative version numbers */
  562.           p[0] = '_';
  563.           }
  564.         else
  565. #endif /* VMS4_4 */
  566.           if (lbrack > rbrack &&
  567.           ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') &&
  568.            (p[1] == '.' || p[1] == ']' || p[1] == '>')))
  569.         lose = 1;
  570. #ifndef VMS4_4
  571.           else
  572.         p[0] = '_';
  573. #endif /* VMS4_4 */
  574.       /* count open brackets, reset close bracket pointer */
  575.       if (p[0] == '[' || p[0] == '<')
  576.         lbrack++, brack = 0;
  577.       /* count close brackets, set close bracket pointer */
  578.       if (p[0] == ']' || p[0] == '>')
  579.         rbrack++, brack = p;
  580.       /* detect ][ or >< */
  581.       if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<'))
  582.         lose = 1;
  583.       if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~')
  584.         nm = p + 1, lose = 1;
  585.       if (p[0] == ':' && (colon || slash))
  586.         /* if dev1:[dir]dev2:, move nm to dev2: */
  587.         if (brack)
  588.           {
  589.         nm = brack + 1;
  590.         brack = 0;
  591.           }
  592.         /* if /pathname/dev:, move nm to dev: */
  593.         else if (slash)
  594.           nm = slash + 1;
  595.         /* if node::dev:, move colon following dev */
  596.         else if (colon && colon[-1] == ':')
  597.           colon = p;
  598.         /* if dev1:dev2:, move nm to dev2: */
  599.         else if (colon && colon[-1] != ':')
  600.           {
  601.         nm = colon + 1;
  602.         colon = 0;
  603.           }
  604.       if (p[0] == ':' && !colon)
  605.         {
  606.           if (p[1] == ':')
  607.         p++;
  608.           colon = p;
  609.         }
  610.       if (lbrack == rbrack)
  611.         if (p[0] == ';')
  612.           dots = 2;
  613.         else if (p[0] == '.')
  614.           dots++;
  615. #endif /* VMS */
  616.       p++;
  617.     }
  618.       if (!lose)
  619.     {
  620. #ifdef VMS
  621.       if (index (nm, '/'))
  622.         return build_string (sys_translate_unix (nm));
  623. #endif /* VMS */
  624.       if (nm == XSTRING (name)->data)
  625.         return name;
  626.       return build_string (nm);
  627.     }
  628.     }
  629.  
  630.   /* Now determine directory to start with and put it in NEWDIR.  */
  631.  
  632.   newdir = 0;
  633.  
  634.   if (nm[0] == '~')
  635.     {
  636.       if (nm[1] == '/'
  637. #ifdef VMS
  638.       || nm[1] == ':'
  639. #endif /* VMS */
  640.       || nm[1] == 0)
  641.     {
  642.       /* Handle ~ on its own.  */
  643. /**
  644.  **  (sjk)++
  645.  **/
  646. #ifdef atarist
  647.     if (!(newdir = (unsigned char *) egetenv ("HOME")))
  648.           newdir = (unsigned char *)"";
  649.     else {
  650.       _dos2unx(newdir,unxdir);
  651.       newdir = unxdir;
  652.     }
  653. #else
  654.       newdir = (unsigned char *) egetenv ("HOME");
  655. #endif /* atarist */
  656.  
  657.     }
  658.       else
  659.     {
  660.       /* Handle ~ followed by user name.  */
  661.       unsigned char *user = nm + 1;
  662.       /* Find end of name.  */
  663.       unsigned char *ptr = (unsigned char *) index (user, '/');
  664.       int len = ptr ? ptr - user : strlen (user);
  665. #ifdef VMS
  666.       unsigned char *ptr1 = index (user, ':');
  667.       if (ptr1 != 0 && ptr1 - user < len)
  668.         len = ptr1 - user;
  669. #endif /* VMS */
  670.       /* Copy the user name into temp storage.  */
  671.       o = (unsigned char *) alloca (len + 1);
  672.       bcopy ((char *) user, o, len);
  673.       o[len] = 0;
  674.  
  675.       /* Look up the user name.  */
  676. /**
  677.  **  (sjk)++
  678.  **/
  679. #ifdef atarist
  680.       pw = (struct passwd *) getpwnam ((char *)o);
  681.       if (!(int)pw)
  682. #else
  683.       pw = (struct passwd *) getpwnam (o);
  684.       if (!pw)
  685. #endif
  686.         error ("User \"%s\" is not known", o);
  687.       newdir = (unsigned char *) pw->pw_dir;
  688.  
  689.       /* Discard the user name from NM.  */
  690.       nm += len;
  691.     }
  692.  
  693.       /* Discard the ~ from NM.  */
  694.       nm++;
  695. #ifdef VMS
  696.       if (*nm != 0)
  697.     nm++;            /* Don't leave the slash in nm.  */
  698. #endif /* VMS */
  699.  
  700.       if (newdir == 0)
  701.     newdir = (unsigned char *) "";
  702.     }
  703.  
  704.   if (nm[0] != '/'
  705.  
  706. /**
  707.  **  (sjk)++ check for ?:/ as a device 
  708.  **/
  709. #ifdef atarist
  710.       && (!isalpha(nm[0]) || nm[1] != ':')
  711. #endif /* atarist */
  712.  
  713. #ifdef VMS
  714.       && !index (nm, ':')
  715. #endif /* not VMS */
  716.       && !newdir)
  717.     {
  718.       if (NULL (defalt))
  719.     defalt = current_buffer->directory;
  720.       CHECK_STRING (defalt, 1);
  721.       newdir = XSTRING (defalt)->data;
  722.     }
  723.  
  724.   /* Now concatenate the directory and name to new space in the stack frame */
  725.  
  726.   tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1;
  727.   target = (unsigned char *) alloca (tlen);
  728.   *target = 0;
  729.  
  730.   if (newdir)
  731.     {
  732. #ifndef VMS
  733.       if (nm[0] == 0 || nm[0] == '/')
  734.     strcpy (target, newdir);
  735.       else
  736. #endif
  737.       file_name_as_directory (target, newdir);
  738.     }
  739.  
  740.   strcat (target, nm);
  741. #ifdef VMS
  742.   if (index (target, '/'))
  743.     strcpy (target, sys_translate_unix (target));
  744. #endif /* VMS */
  745.  
  746.   /* Now canonicalize by removing /. and /foo/.. if they appear */
  747.  
  748.   p = target;
  749.   o = target;
  750.  
  751.   while (*p)
  752.     {
  753. #ifdef VMS
  754.       if (*p != ']' && *p != '>' && *p != '-')
  755.     {
  756.       if (*p == '\\')
  757.         p++;
  758.       *o++ = *p++;
  759.     }
  760.       else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2)
  761.     /* brackets are offset from each other by 2 */
  762.     {
  763.       p += 2;
  764.       if (*p != '.' && *p != '-' && o[-1] != '.')
  765.         /* convert [foo][bar] to [bar] */
  766.         while (o[-1] != '[' && o[-1] != '<')
  767.           o--;
  768.       else if (*p == '-' && *o != '.')
  769.         *--p = '.';
  770.     }
  771.       else if (p[0] == '-' && o[-1] == '.' &&
  772.            (p[1] == '.' || p[1] == ']' || p[1] == '>'))
  773.     /* flush .foo.- ; leave - if stopped by '[' or '<' */
  774.     {
  775.       do
  776.         o--;
  777.       while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<');
  778.       if (p[1] == '.')    /* foo.-.bar ==> bar*/
  779.         p += 2;
  780.       else if (o[-1] == '.') /* '.foo.-]' ==> ']' */
  781.         p++, o--;
  782.       /* else [foo.-] ==> [-] */
  783.     }
  784.       else
  785.     {
  786. #ifndef VMS4_4
  787.       if (*p == '-' &&
  788.           o[-1] != '[' && o[-1] != '<' && o[-1] != '.' &&
  789.           p[1] != ']' && p[1] != '>' && p[1] != '.')
  790.         *p = '_';
  791. #endif /* VMS4_4 */
  792.       *o++ = *p++;
  793.     }
  794. #else /* not VMS */
  795.       if (*p != '/')
  796.      {
  797.       *o++ = *p++;
  798.     }
  799.       else if (!strncmp (p, "//", 2)
  800. #ifdef APOLLO
  801.            /* // at start of filename is meaningful in Apollo system */
  802.            && o != target
  803. #endif /* APOLLO */
  804.            )
  805.     {
  806.       o = target;
  807.       p++;
  808.     }
  809.       else if (p[0] == '/' && p[1] == '.' &&
  810.            (p[2] == '/' || p[2] == 0))
  811.     p += 2;
  812.       else if (!strncmp (p, "/..", 3)
  813.            /* `/../' is the "superroot" on certain file systems.  */
  814.            && o != target
  815.            && (p[3] == '/' || p[3] == 0))
  816.     {
  817.       while (o != target && *--o != '/')
  818.         ;
  819. #ifdef APOLLO
  820.       if (o == target + 1 && o[-1] == '/' && o[0] == '/')
  821.         ++o;
  822.       else
  823. #endif APOLLO
  824.       if (o == target && *o == '/')
  825.         ++o;
  826.       p += 3;
  827.     }
  828.       else
  829.      {
  830.       *o++ = *p++;
  831.     }
  832. #endif /* not VMS */
  833.     }
  834.  
  835.   return make_string (target, o - target);
  836. }
  837.  
  838. DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name,
  839.   Ssubstitute_in_file_name, 1, 1, 0,
  840.   "Substitute environment variables referred to in STRING.\n\
  841. A $ begins a request to substitute; the env variable name is the alphanumeric\n\
  842. characters and underscores after the $, or is surrounded by braces.\n\
  843. If a ~ appears following a /, everything through that / is discarded.\n\
  844. On VMS, $ substitution is not done; this function does little and only\n\
  845. duplicates what expand-file-name does.")
  846.   (string)
  847.      Lisp_Object string;
  848. {
  849.   unsigned char *nm;
  850.  
  851.   register unsigned char *s, *p, *o, *x, *endp;
  852.   unsigned char *target;
  853.   int total = 0;
  854.   int substituted = 0;
  855.   unsigned char *xnm;
  856.  
  857.   CHECK_STRING (string, 0);
  858.  
  859.   nm = XSTRING (string)->data;
  860.   endp = nm + XSTRING (string)->size;
  861.  
  862.   /* If /~ or // appears, discard everything through first slash. */
  863.  
  864.   for (p = nm; p != endp; p++)
  865.     {
  866.       if ((p[0] == '~' ||
  867. #ifdef APOLLO
  868.        /* // at start of file name is meaningful in Apollo system */
  869.        (p[0] == '/' && p - 1 != nm)
  870. #else /* not APOLLO */
  871.        p[0] == '/'
  872. #endif /* not APOLLO */
  873.  
  874. /**
  875.  **  (sjk)++ check for ?:/ as a device 
  876.  **/
  877. #ifdef atarist
  878.        || (isalpha(p[0]) && p[1] == ':')
  879. #endif /* atarist */
  880.  
  881.        )
  882.       && p != nm &&
  883. #ifdef VMS
  884.       (p[-1] == ':' || p[-1] == ']' || p[-1] == '>' ||
  885. #endif /* VMS */
  886.       p[-1] == '/')
  887. #ifdef VMS
  888.       )
  889. #endif /* VMS */
  890.     {
  891.       nm = p;
  892.       substituted = 1;
  893.     }
  894.     }
  895.  
  896. #ifdef VMS
  897.   return build_string (nm);
  898. #else
  899.  
  900.   /* See if any variables are substituted into the string
  901.      and find the total length of their values in `total' */
  902.  
  903.   for (p = nm; p != endp;)
  904.     if (*p != '$')
  905.       p++;
  906.     else
  907.       {
  908.     p++;
  909.     if (p == endp)
  910.       goto badsubst;
  911.     else if (*p == '$')
  912.       {
  913.         /* "$$" means a single "$" */
  914.         p++;
  915.         total -= 1;
  916.         substituted = 1;
  917.         continue;
  918.       }
  919.     else if (*p == '{')
  920.       {
  921.         o = ++p;
  922.         while (p != endp && *p != '}') p++;
  923.         if (*p != '}') goto missingclose;
  924.         s = p;
  925.       }
  926.     else
  927.       {
  928.         o = p;
  929.         while (p != endp && (isalnum (*p) || *p == '_')) p++;
  930.         s = p;
  931.       }
  932.  
  933.     /* Copy out the variable name */
  934.     target = (unsigned char *) alloca (s - o + 1);
  935.     strncpy (target, o, s - o);
  936.     target[s - o] = 0;
  937.  
  938.     /* Get variable value */
  939.     o = (unsigned char *) egetenv (target);
  940. /* The presence of this code makes vax 5.0 crash, for reasons yet unknown */
  941. #if 0
  942. #ifdef USG
  943.     if (!o && !strcmp (target, "USER"))
  944.       o = egetenv ("LOGNAME");
  945. #endif /* USG */
  946. #endif /* 0 */
  947.     if (!o) goto badvar;
  948.     total += strlen (o);
  949.     substituted = 1;
  950.       }
  951.  
  952.   if (!substituted)
  953.     return string;
  954.  
  955.   /* If substitution required, recopy the string and do it */
  956.   /* Make space in stack frame for the new copy */
  957.   xnm = (unsigned char *) alloca (XSTRING (string)->size + total + 1);
  958.   x = xnm;
  959.  
  960.   /* Copy the rest of the name through, replacing $ constructs with values */
  961.   for (p = nm; *p;)
  962.     if (*p != '$')
  963.       *x++ = *p++;
  964.     else
  965.       {
  966.     p++;
  967.     if (p == endp)
  968.       goto badsubst;
  969.     else if (*p == '$')
  970.       {
  971.         *x++ = *p++;
  972.         continue;
  973.       }
  974.     else if (*p == '{')
  975.       {
  976.         o = ++p;
  977.         while (p != endp && *p != '}') p++;
  978.         if (*p != '}') goto missingclose;
  979.         s = p++;
  980.       }
  981.     else
  982.       {
  983.         o = p;
  984.         while (p != endp && (isalnum (*p) || *p == '_')) p++;
  985.         s = p;
  986.       }
  987.  
  988.     /* Copy out the variable name */
  989.     target = (unsigned char *) alloca (s - o + 1);
  990.     strncpy (target, o, s - o);
  991.     target[s - o] = 0;
  992.  
  993.     /* Get variable value */
  994.     o = (unsigned char *) egetenv (target);
  995. /* The presence of this code makes vax 5.0 crash, for reasons yet unknown */
  996. #if 0
  997. #ifdef USG
  998.     if (!o && !strcmp (target, "USER"))
  999.       o = egetenv ("LOGNAME");
  1000. #endif /* USG */
  1001. #endif /* 0 */
  1002.     if (!o)
  1003.       goto badvar;
  1004.  
  1005.     strcpy (x, o);
  1006.     x += strlen (o);
  1007.       }
  1008.  
  1009.   *x = 0;
  1010.  
  1011.   /* If /~ or // appears, discard everything through first slash. */
  1012.  
  1013.   for (p = xnm; p != x; p++)
  1014.     if ((p[0] == '~' ||
  1015. #ifdef APOLLO
  1016.      /* // at start of file name is meaningful in Apollo system */
  1017.      (p[0] == '/' && p - 1 != xnm)
  1018. #else /* not APOLLO */
  1019.      p[0] == '/'
  1020. #endif /* not APOLLO */
  1021.  
  1022. /**
  1023.  **  (sjk)++ check for ?:/ as a device 
  1024.  **/
  1025. #ifdef atarist
  1026.      || (isalpha(p[0]) && p[1] == ':')
  1027. #endif /* atarist */
  1028.  
  1029.      )
  1030.     && p != nm && p[-1] == '/')
  1031.       xnm = p;
  1032.  
  1033.   return make_string (xnm, x - xnm);
  1034.  
  1035.  badsubst:
  1036.   error ("Bad format environment-variable substitution");
  1037.  missingclose:
  1038.   error ("Missing \"}\" in environment-variable substitution");
  1039.  badvar:
  1040.   error ("Substituting nonexistent environment variable \"%s\"", target);
  1041.  
  1042.   /* NOTREACHED */
  1043. #endif /* not VMS */
  1044. }
  1045.  
  1046. Lisp_Object
  1047. expand_and_dir_to_file (filename, defdir)
  1048.      Lisp_Object filename, defdir;
  1049. {
  1050.   register Lisp_Object abspath;
  1051.  
  1052.   abspath = Fexpand_file_name (filename, defdir);
  1053. #ifdef VMS
  1054.   {
  1055.     register int c = XSTRING (abspath)->data[XSTRING (abspath)->size - 1];
  1056.     if (c == ':' || c == ']' || c == '>')
  1057.       abspath = Fdirectory_file_name (abspath);
  1058.   }
  1059. #else
  1060.   /* Remove final slash, if any (unless path is root).
  1061.      stat behaves differently depending!  */
  1062.  
  1063. /**
  1064.  **  (sjk)++
  1065.  **/
  1066. #ifdef atarist
  1067.   if ((XSTRING (abspath)->size > 1
  1068.        && XSTRING (abspath)->data[1] != ':' || XSTRING (abspath)->size > 3)
  1069.       && XSTRING (abspath)->data[XSTRING (abspath)->size - 1] == '/')
  1070. #else
  1071.   if (XSTRING (abspath)->size > 1
  1072.       && XSTRING (abspath)->data[XSTRING (abspath)->size - 1] == '/')
  1073. #endif
  1074.  
  1075.     {
  1076.       if (EQ (abspath, filename))
  1077.     abspath = Fcopy_sequence (abspath);
  1078.       XSTRING (abspath)->data[XSTRING (abspath)->size - 1] = 0;
  1079.     }
  1080. #endif
  1081.   return abspath;
  1082. }
  1083.  
  1084. barf_or_query_if_file_exists (absname, querystring, interactive)
  1085.      Lisp_Object absname;
  1086.      unsigned char *querystring;
  1087.      int interactive;
  1088. {
  1089.   register Lisp_Object tem;
  1090.   struct gcpro gcpro1;
  1091.  
  1092.   if (access (XSTRING (absname)->data, 4) >= 0)
  1093.     {
  1094.       if (! interactive)
  1095.     Fsignal (Qfile_already_exists,
  1096.          Fcons (build_string ("File already exists"),
  1097.             Fcons (absname, Qnil)));
  1098.       GCPRO1 (absname);
  1099.       tem = Fyes_or_no_p (format1 ("File %s already exists; %s anyway? ",
  1100.                    XSTRING (absname)->data, querystring));
  1101.       UNGCPRO;
  1102.       if (NULL (tem))
  1103.     Fsignal (Qfile_already_exists,
  1104.          Fcons (build_string ("File already exists"),
  1105.             Fcons (absname, Qnil)));
  1106.     }
  1107.   return;
  1108. }
  1109.  
  1110. DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 4,
  1111.   "fCopy file: \nFCopy %s to file: \np",
  1112.   "Copy FILE to NEWNAME.  Both args strings.\n\
  1113. Signals a  file-already-exists  error if NEWNAME already exists,\n\
  1114. unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.\n\
  1115. A number as third arg means request confirmation if NEWNAME already exists.\n\
  1116. This is what happens in interactive use with M-x.\n\
  1117. Fourth arg non-nil means give the new file the same last-modified time\n\
  1118. that the old one has.  (This works on only some systems.)")
  1119.   (filename, newname, ok_if_already_exists, keep_date)
  1120.      Lisp_Object filename, newname, ok_if_already_exists, keep_date;
  1121. {
  1122.   int ifd, ofd, n;
  1123.   char buf[16 * 1024];
  1124.   struct stat st;
  1125.   struct gcpro gcpro1, gcpro2;
  1126.  
  1127.   GCPRO2 (filename, newname);
  1128.   CHECK_STRING (filename, 0);
  1129.   CHECK_STRING (newname, 1);
  1130.   filename = Fexpand_file_name (filename, Qnil);
  1131.   newname = Fexpand_file_name (newname, Qnil);
  1132.   if (NULL (ok_if_already_exists)
  1133.       || XTYPE (ok_if_already_exists) == Lisp_Int)
  1134.     barf_or_query_if_file_exists (newname, "copy to it",
  1135.                   XTYPE (ok_if_already_exists) == Lisp_Int);
  1136.  
  1137.   ifd = open (XSTRING (filename)->data, 0);
  1138.   if (ifd < 0)
  1139.     report_file_error ("Opening input file", Fcons (filename, Qnil));
  1140.  
  1141. #ifdef VMS
  1142.   /* Create the copy file with the same record format as the input file */
  1143.   ofd = sys_creat (XSTRING (newname)->data, 0666, ifd);
  1144. #else
  1145.   ofd = creat (XSTRING (newname)->data, 0666);
  1146. #endif /* VMS */
  1147.   if (ofd < 0)
  1148.     {
  1149.       close (ifd);
  1150.       report_file_error ("Opening output file", Fcons (newname, Qnil));
  1151.     }
  1152.  
  1153.   while ((n = read (ifd, buf, sizeof buf)) > 0)
  1154.     if (write (ofd, buf, n) != n)
  1155.       {
  1156.     close (ifd);
  1157.     close (ofd);
  1158.     report_file_error ("I/O error", Fcons (newname, Qnil));
  1159.       }
  1160.  
  1161.   if (fstat (ifd, &st) >= 0)
  1162.     {
  1163. #ifdef HAVE_TIMEVAL
  1164.       if (!NULL (keep_date))
  1165.     {
  1166. #ifdef USE_UTIME
  1167. /* AIX has utimes() in compatibility package, but it dies.  So use good old
  1168.    utime interface instead. */
  1169.       struct {
  1170.         time_t atime;
  1171.         time_t mtime;
  1172.       } tv;
  1173.       tv.atime = st.st_atime;
  1174.       tv.mtime = st.st_mtime;
  1175.       utime (XSTRING (newname)->data, &tv);
  1176. #else /* not USE_UTIME */
  1177.       struct timeval timevals[2];
  1178.       timevals[0].tv_sec = st.st_atime;
  1179.       timevals[1].tv_sec = st.st_mtime;
  1180.       timevals[0].tv_usec = timevals[1].tv_usec = 0;
  1181.       utimes (XSTRING (newname)->data, timevals);
  1182. #endif /* not USE_UTIME */
  1183.     }
  1184. #endif /* HAVE_TIMEVALS */
  1185.  
  1186. #ifdef APOLLO
  1187.       if (!egetenv ("USE_DOMAIN_ACLS"))
  1188. #endif
  1189.       chmod (XSTRING (newname)->data, st.st_mode & 07777);
  1190.     }
  1191.  
  1192.   close (ifd);
  1193.   if (close (ofd) < 0)
  1194.     report_file_error ("I/O error", Fcons (newname, Qnil));
  1195.  
  1196.   UNGCPRO;
  1197.   return Qnil;
  1198. }
  1199.  
  1200. DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 1, "fDelete file: ",
  1201.   "Delete specified file.  One argument, a file name string.\n\
  1202. If file has multiple names, it continues to exist with the other names.")
  1203.   (filename)
  1204.      Lisp_Object filename;
  1205. {
  1206.   CHECK_STRING (filename, 0);
  1207.   filename = Fexpand_file_name (filename, Qnil);
  1208.   if (0 > unlink (XSTRING (filename)->data))
  1209.     report_file_error ("Removing old name", Flist (1, &filename));
  1210.   return Qnil;
  1211. }
  1212.  
  1213. DEFUN ("rename-file", Frename_file, Srename_file, 2, 3,
  1214.   "fRename file: \nFRename %s to file: \np",
  1215.   "Rename FILE as NEWNAME.  Both args strings.\n\
  1216. If file has names other than FILE, it continues to have those names.\n\
  1217. Signals a  file-already-exists  error if NEWNAME already exists\n\
  1218. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
  1219. A number as third arg means request confirmation if NEWNAME already exists.\n\
  1220. This is what happens in interactive use with M-x.")
  1221.   (filename, newname, ok_if_already_exists)
  1222.      Lisp_Object filename, newname, ok_if_already_exists;
  1223. {
  1224. #ifdef NO_ARG_ARRAY
  1225.   Lisp_Object args[2];
  1226. #endif
  1227.   struct gcpro gcpro1, gcpro2;
  1228.  
  1229.   GCPRO2 (filename, newname);
  1230.   CHECK_STRING (filename, 0);
  1231.   CHECK_STRING (newname, 1);
  1232.   filename = Fexpand_file_name (filename, Qnil);
  1233.   newname = Fexpand_file_name (newname, Qnil);
  1234.   if (NULL (ok_if_already_exists)
  1235.       || XTYPE (ok_if_already_exists) == Lisp_Int)
  1236.     barf_or_query_if_file_exists (newname, "rename to it",
  1237.                   XTYPE (ok_if_already_exists) == Lisp_Int);
  1238. #ifndef BSD4_1
  1239.   if (0 > rename (XSTRING (filename)->data, XSTRING (newname)->data))
  1240. #else
  1241.   if (0 > link (XSTRING (filename)->data, XSTRING (newname)->data)
  1242.       || 0 > unlink (XSTRING (filename)->data))
  1243. #endif
  1244.     {
  1245.       if (errno == EXDEV)
  1246.     {
  1247.       Fcopy_file (filename, newname, ok_if_already_exists, Qt);
  1248.       Fdelete_file (filename);
  1249.     }
  1250.       else
  1251. #ifdef NO_ARG_ARRAY
  1252.     {
  1253.       args[0] = filename;
  1254.       args[1] = newname;
  1255.       report_file_error ("Renaming", Flist (2, args));
  1256.     }
  1257. #else
  1258.     report_file_error ("Renaming", Flist (2, &filename));
  1259. #endif
  1260.     }
  1261.   UNGCPRO;
  1262.   return Qnil;
  1263. }
  1264.  
  1265. DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3,
  1266.   "fAdd name to file: \nFName to add to %s: \np",
  1267.   "Give FILE additional name NEWNAME.  Both args strings.\n\
  1268. Signals a  file-already-exists  error if NEWNAME already exists\n\
  1269. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
  1270. A number as third arg means request confirmation if NEWNAME already exists.\n\
  1271. This is what happens in interactive use with M-x.")
  1272.   (filename, newname, ok_if_already_exists)
  1273.      Lisp_Object filename, newname, ok_if_already_exists;
  1274. {
  1275. #ifdef NO_ARG_ARRAY
  1276.   Lisp_Object args[2];
  1277. #endif
  1278.   struct gcpro gcpro1, gcpro2;
  1279.  
  1280.   GCPRO2 (filename, newname);
  1281.   CHECK_STRING (filename, 0);
  1282.   CHECK_STRING (newname, 1);
  1283.   filename = Fexpand_file_name (filename, Qnil);
  1284.   newname = Fexpand_file_name (newname, Qnil);
  1285.   if (NULL (ok_if_already_exists)
  1286.       || XTYPE (ok_if_already_exists) == Lisp_Int)
  1287.     barf_or_query_if_file_exists (newname, "make it a new name",
  1288.                   XTYPE (ok_if_already_exists) == Lisp_Int);
  1289.   unlink (XSTRING (newname)->data);
  1290.   if (0 > link (XSTRING (filename)->data, XSTRING (newname)->data))
  1291.     {
  1292. #ifdef NO_ARG_ARRAY
  1293.       args[0] = filename;
  1294.       args[1] = newname;
  1295.       report_file_error ("Adding new name", Flist (2, args));
  1296. #else
  1297.       report_file_error ("Adding new name", Flist (2, &filename));
  1298. #endif
  1299.     }
  1300.  
  1301.   UNGCPRO;
  1302.   return Qnil;
  1303. }
  1304.  
  1305. #ifdef S_IFLNK
  1306. DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3,
  1307.   "FMake symbolic link to file: \nFMake symbolic link to file %s: \np",
  1308.   "Make a symbolic link to FILENAME, named LINKNAME.  Both args strings.\n\
  1309. Signals a  file-already-exists  error if NEWNAME already exists\n\
  1310. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
  1311. A number as third arg means request confirmation if NEWNAME already exists.\n\
  1312. This happens for interactive use with M-x.")
  1313.   (filename, newname, ok_if_already_exists)
  1314.      Lisp_Object filename, newname, ok_if_already_exists;
  1315. {
  1316. #ifdef NO_ARG_ARRAY
  1317.   Lisp_Object args[2];
  1318. #endif
  1319.   struct gcpro gcpro1, gcpro2;
  1320.  
  1321.   GCPRO2 (filename, newname);
  1322.   CHECK_STRING (filename, 0);
  1323.   CHECK_STRING (newname, 1);
  1324.   filename = Fexpand_file_name (filename, Qnil);
  1325.   newname = Fexpand_file_name (newname, Qnil);
  1326.   if (NULL (ok_if_already_exists)
  1327.       || XTYPE (ok_if_already_exists) == Lisp_Int)
  1328.     barf_or_query_if_file_exists (newname, "make it a link",
  1329.                   XTYPE (ok_if_already_exists) == Lisp_Int);
  1330.   if (0 > symlink (XSTRING (filename)->data, XSTRING (newname)->data))
  1331.     {
  1332. #ifdef NO_ARG_ARRAY
  1333.       args[0] = filename;
  1334.       args[1] = newname;
  1335.       report_file_error ("Making symbolic link", Flist (2, args));
  1336. #else
  1337.       report_file_error ("Making symbolic link", Flist (2, &filename));
  1338. #endif
  1339.     }
  1340.   UNGCPRO;
  1341.   return Qnil;
  1342. }
  1343. #endif /* S_IFLNK */
  1344.  
  1345. #ifdef VMS
  1346.  
  1347. DEFUN ("define-logical-name", Fdefine_logical_name, Sdefine_logical_name,
  1348.        2, 2,
  1349.        "sDefine logical name: \nsDefine logical name %s as: ",
  1350.        "Define the job-wide logical name NAME to have the value STRING.\n\
  1351. If STRING is nil or a null string, the logical name NAME is deleted.")
  1352.   (varname, string)
  1353.      Lisp_Object varname;
  1354.      Lisp_Object string;
  1355. {
  1356.   CHECK_STRING (varname, 0);
  1357.   if (NULL (string))
  1358.     delete_logical_name (XSTRING (varname)->data);
  1359.   else
  1360.     {
  1361.       CHECK_STRING (string, 1);
  1362.  
  1363.       if (XSTRING (string)->size == 0)
  1364.         delete_logical_name (XSTRING (varname)->data);
  1365.       else
  1366.         define_logical_name (XSTRING (varname)->data, XSTRING (string)->data);
  1367.     }
  1368.  
  1369.   return string;
  1370. }
  1371. #endif /* VMS */
  1372.  
  1373. #ifdef HPUX_NET
  1374.  
  1375. DEFUN ("sysnetunam", Fsysnetunam, Ssysnetunam, 2, 2, 0,
  1376.        "Open a network connection to PATH using LOGIN as the login string.")
  1377.      (path, login)
  1378.      Lisp_Object path, login;
  1379. {
  1380.   int netresult;
  1381.   
  1382.   CHECK_STRING (path, 0);
  1383.   CHECK_STRING (login, 0);  
  1384.   
  1385.   netresult = netunam (XSTRING (path)->data, XSTRING (login)->data);
  1386.  
  1387.   if (netresult == -1)
  1388.     return Qnil;
  1389.   else
  1390.     return Qt;
  1391. }
  1392. #endif /* HPUX_NET */
  1393.  
  1394. DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
  1395.        1, 1, 0,
  1396.        "Return t if file FILENAME specifies an absolute path name.")
  1397.      (filename)
  1398.      Lisp_Object filename;
  1399. {
  1400.   unsigned char *ptr;
  1401.  
  1402.   CHECK_STRING (filename, 0);
  1403.   ptr = XSTRING (filename)->data;
  1404.   if (*ptr == '/' || *ptr == '~'
  1405. #ifdef VMS
  1406. /* ??? This criterion is probably wrong for '<'.  */
  1407.       || index (ptr, ':') || index (ptr, '<')
  1408.       || (*ptr == '[' && (ptr[1] != '-' || (ptr[2] != '.' && ptr[2] != ']'))
  1409.       && ptr[1] != '.')
  1410. #endif /* VMS */
  1411.  
  1412. /**
  1413.  **  (sjk)++ check for ?:/ ad a device 
  1414.  **/
  1415. #ifdef atarist
  1416.       || (isalpha(ptr[0]) && ptr[1] == ':' &&
  1417.       (ptr[2] == '/' || ptr[2] == '\\'))
  1418. #endif /* atarist */
  1419.  
  1420.       )
  1421.     return Qt;
  1422.   else
  1423.     return Qnil;
  1424. }
  1425.  
  1426. DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0,
  1427.   "Return t if file FILENAME exists.  (This does not mean you can read it.)\n\
  1428. See also file-readable-p and file-attributes.")
  1429.   (filename)
  1430.      Lisp_Object filename;
  1431. {
  1432.   Lisp_Object abspath;
  1433.  
  1434.   CHECK_STRING (filename, 0);
  1435.   abspath = Fexpand_file_name (filename, Qnil);
  1436.   return (access (XSTRING (abspath)->data, 0) >= 0) ? Qt : Qnil;
  1437. }
  1438.  
  1439. DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0,
  1440.   "Return t if file FILENAME exists and you can read it.\n\
  1441. See also file-exists-p and file-attributes.")
  1442.   (filename)
  1443.      Lisp_Object filename;
  1444. {
  1445.   Lisp_Object abspath;
  1446.  
  1447.   CHECK_STRING (filename, 0);
  1448.   abspath = Fexpand_file_name (filename, Qnil);
  1449.   return (access (XSTRING (abspath)->data, 4) >= 0) ? Qt : Qnil;
  1450. }
  1451.  
  1452. DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
  1453.   "If file FILENAME is the name of a symbolic link\n\
  1454. returns the name of the file to which it is linked.\n\
  1455. Otherwise returns NIL.")
  1456.   (filename)
  1457.      Lisp_Object filename;
  1458. {
  1459. #ifdef S_IFLNK
  1460.   char *buf;
  1461.   int bufsize;
  1462.   int valsize;
  1463.   Lisp_Object val;
  1464.  
  1465.   CHECK_STRING (filename, 0);
  1466.   filename = Fexpand_file_name (filename, Qnil);
  1467.  
  1468.   bufsize = 100;
  1469.   while (1)
  1470.     {
  1471.       buf = (char *) xmalloc (bufsize);
  1472.       bzero (buf, bufsize);
  1473.       valsize = readlink (XSTRING (filename)->data, buf, bufsize);
  1474.       if (valsize < bufsize) break;
  1475.       /* Buffer was not long enough */
  1476.       free (buf);
  1477.       bufsize *= 2;
  1478.     }
  1479.   if (valsize == -1)
  1480.     {
  1481.       free (buf);
  1482.       return Qnil;
  1483.     }
  1484.   val = make_string (buf, valsize);
  1485.   free (buf);
  1486.   return val;
  1487. #else /* not S_IFLNK */
  1488.   return Qnil;
  1489. #endif /* not S_IFLNK */
  1490. }
  1491.  
  1492. /* Having this before file-symlink-p mysteriously caused it to be forgotten
  1493.    on the RT/PC.  */
  1494. DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0,
  1495.   "Return t if file FILENAME can be written or created by you.")
  1496.   (filename)
  1497.      Lisp_Object filename;
  1498. {
  1499.   Lisp_Object abspath, dir;
  1500.  
  1501.   CHECK_STRING (filename, 0);
  1502.   abspath = Fexpand_file_name (filename, Qnil);
  1503.   if (access (XSTRING (abspath)->data, 0) >= 0)
  1504.     return (access (XSTRING (abspath)->data, 2) >= 0) ? Qt : Qnil;
  1505.   dir = Ffile_name_directory (abspath);
  1506. #ifdef VMS
  1507.   if (!NULL (dir))
  1508.     dir = Fdirectory_file_name (dir);
  1509. #endif /* VMS */
  1510.   return (access (!NULL (dir) ? (char *) XSTRING (dir)->data : "", 2) >= 0
  1511.       ? Qt : Qnil);
  1512. }
  1513.  
  1514. DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0,
  1515.   "Return t if file FILENAME is the name of a directory as a file.\n\
  1516. A directory name spec may be given instead; then the value is t\n\
  1517. if the directory so specified exists and really is a directory.")
  1518.   (filename)
  1519.      Lisp_Object filename;
  1520. {
  1521.   register Lisp_Object abspath;
  1522.   struct stat st;
  1523.  
  1524.   abspath = expand_and_dir_to_file (filename, current_buffer->directory);
  1525.  
  1526. /**
  1527.  **  (sjk)++
  1528.  **/
  1529. #ifdef atarist
  1530.   if (stat ((char *) XSTRING (abspath)->data, &st) < 0)
  1531. #else
  1532.   if (stat (XSTRING (abspath)->data, &st) < 0)
  1533. #endif
  1534.     return Qnil;
  1535.   return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil;
  1536. }
  1537.  
  1538. DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0,
  1539.   "Return mode bits of FILE, as an integer.")
  1540.   (filename)
  1541.      Lisp_Object filename;
  1542. {
  1543.   Lisp_Object abspath;
  1544.   struct stat st;
  1545.  
  1546.   abspath = expand_and_dir_to_file (filename, current_buffer->directory);
  1547.  
  1548. /**
  1549.  **  (sjk)++
  1550.  **/
  1551. #ifdef atarist
  1552.   if (stat ((char *)XSTRING (abspath)->data, &st) < 0)
  1553. #else
  1554.   if (stat (XSTRING (abspath)->data, &st) < 0)
  1555. #endif
  1556.     return Qnil;
  1557.   return make_number (st.st_mode & 07777);
  1558. }
  1559.  
  1560. DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2, 0,
  1561.   "Set mode bits of FILE to MODE (an integer).\n\
  1562. Only the 12 low bits of MODE are used.")
  1563.   (filename, mode)
  1564.      Lisp_Object filename, mode;
  1565. {
  1566.   Lisp_Object abspath;
  1567.  
  1568.   abspath = Fexpand_file_name (filename, current_buffer->directory);
  1569.   CHECK_NUMBER (mode, 1);
  1570.  
  1571. #ifndef APOLLO
  1572.   if (chmod (XSTRING (abspath)->data, XINT (mode)) < 0)
  1573.     report_file_error ("Doing chmod", Fcons (abspath, Qnil));
  1574. #else /* APOLLO */
  1575.   if (!egetenv ("USE_DOMAIN_ACLS"))
  1576.     {
  1577.       struct stat st;
  1578.       struct timeval tvp[2];
  1579.  
  1580.       /* chmod on apollo also change the file's modtime; need to save the
  1581.      modtime and then restore it. */
  1582.       if (stat (XSTRING (abspath)->data, &st) < 0)
  1583.     {
  1584.       report_file_error ("Doing chmod", Fcons (abspath, Qnil));
  1585.       return (Qnil);
  1586.     }
  1587.  
  1588.       if (chmod (XSTRING (abspath)->data, XINT (mode)) < 0)
  1589.      report_file_error ("Doing chmod", Fcons (abspath, Qnil));
  1590.  
  1591.       /* reset the old accessed and modified times.  */
  1592.       tvp[0].tv_sec = st.st_atime + 1; /* +1 due to an Apollo roundoff bug */
  1593.       tvp[0].tv_usec = 0;
  1594.       tvp[1].tv_sec = st.st_mtime + 1; /* +1 due to an Apollo roundoff bug */
  1595.       tvp[1].tv_usec = 0;
  1596.  
  1597.       if (utimes (XSTRING (abspath)->data, tvp) < 0)
  1598.      report_file_error ("Doing utimes", Fcons (abspath, Qnil));
  1599.     }
  1600. #endif /* APOLLO */
  1601.  
  1602.   return Qnil;
  1603. }
  1604.  
  1605. DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
  1606.   "Return t if file FILE1 is newer than file FILE2.\n\
  1607. If FILE1 does not exist, the answer is nil;\n\
  1608. otherwise, if FILE2 does not exist, the answer is t.")
  1609.   (file1, file2)
  1610.      Lisp_Object file1, file2;
  1611. {
  1612.   Lisp_Object abspath;
  1613.   struct stat st;
  1614.   int mtime1;
  1615.  
  1616.   CHECK_STRING (file1, 0);
  1617.   CHECK_STRING (file2, 0);
  1618.  
  1619.   abspath = expand_and_dir_to_file (file1, current_buffer->directory);
  1620.  
  1621. /**
  1622.  **  (sjk)++
  1623.  **/
  1624. #ifdef atarist
  1625.   if (stat ((char *)XSTRING (abspath)->data, &st) < 0)
  1626. #else
  1627.   if (stat (XSTRING (abspath)->data, &st) < 0)
  1628. #endif
  1629.     return Qnil;
  1630.  
  1631.   mtime1 = st.st_mtime;
  1632.  
  1633.   abspath = expand_and_dir_to_file (file2, current_buffer->directory);
  1634.  
  1635. /**
  1636.  **  (sjk)++
  1637.  **/
  1638. #ifdef atarist
  1639.   if (stat ((char *)XSTRING (abspath)->data, &st) < 0)
  1640. #else
  1641.   if (stat (XSTRING (abspath)->data, &st) < 0)
  1642. #endif
  1643.     return Qt;
  1644.  
  1645.   return (mtime1 > st.st_mtime) ? Qt : Qnil;
  1646. }
  1647.  
  1648. close_file_unwind (fd)
  1649.      Lisp_Object fd;
  1650. {
  1651.   close (XFASTINT (fd));
  1652. }
  1653.  
  1654. DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
  1655.   1, 2, 0,
  1656.   "Insert contents of file FILENAME after point.\n\
  1657. Returns list of absolute pathname and length of data inserted.\n\
  1658. If second argument VISIT is non-nil, the buffer's visited filename\n\
  1659. and last save file modtime are set, and it is marked unmodified.\n\
  1660. If visiting and the file does not exist, visiting is completed\n\
  1661. before the error is signaled.")
  1662.   (filename, visit)
  1663.      Lisp_Object filename, visit;
  1664. {
  1665.   struct stat st;
  1666.   register int fd;
  1667.   register int inserted = 0;
  1668.   register int i = 0;
  1669.   int count = specpdl_ptr - specpdl;
  1670.   struct gcpro gcpro1;
  1671.  
  1672.   GCPRO1 (filename);
  1673.   if (!NULL (current_buffer->read_only))
  1674.     Fbarf_if_buffer_read_only();
  1675.  
  1676.   CHECK_STRING (filename, 0);
  1677.   filename = Fexpand_file_name (filename, Qnil);
  1678.  
  1679.   fd = -1;
  1680.  
  1681. #ifndef APOLLO
  1682.  
  1683. /**
  1684.  **  (sjk)++
  1685.  **/
  1686. #ifdef atarist
  1687.   if (stat ((char *)XSTRING (filename)->data, &st) < 0
  1688. #else
  1689.   if (stat (XSTRING (filename)->data, &st) < 0
  1690. #endif
  1691.  
  1692.     || (fd = open (XSTRING (filename)->data, 0)) < 0)
  1693. #else
  1694.   if ((fd = open (XSTRING (filename)->data, 0)) < 0
  1695.       || fstat (fd, &st) < 0)
  1696. #endif /* not APOLLO */
  1697.     {
  1698.       if (fd >= 0) close (fd);
  1699.       if (NULL (visit))
  1700.     report_file_error ("Opening input file", Fcons (filename, Qnil));
  1701.       st.st_mtime = -1;
  1702.       goto notfound;
  1703.     }
  1704.  
  1705.   record_unwind_protect (close_file_unwind, make_number (fd));
  1706.  
  1707.   /* Supposedly happens on VMS.  */
  1708.   if (st.st_size < 0)
  1709.     error ("File size is negative");
  1710.   {
  1711.     register Lisp_Object temp;
  1712.  
  1713.     /* Make sure point-max won't overflow after this insertion.  */
  1714.     XSET (temp, Lisp_Int, st.st_size + Z);
  1715.     if (st.st_size + Z != XINT (temp))
  1716.       error ("maximum buffer size exceeded");
  1717.   }
  1718.  
  1719.   if (NULL (visit))
  1720.     prepare_to_modify_buffer ();
  1721.  
  1722.   move_gap (point);
  1723.   if (GAP_SIZE < st.st_size)
  1724.     make_gap (st.st_size - GAP_SIZE);
  1725.     
  1726.   while (1)
  1727.     {
  1728.       int try = min (st.st_size - inserted, 64 << 10);
  1729.       int this = read (fd, &FETCH_CHAR (point + inserted - 1) + 1, try);
  1730.  
  1731.       if (this <= 0)
  1732.     {
  1733.       i = this;
  1734.       break;
  1735.     }
  1736.  
  1737.       GPT += this;
  1738.       GAP_SIZE -= this;
  1739.       ZV += this;
  1740.       Z += this;
  1741.       inserted += this;
  1742.     }
  1743.  
  1744.   if (inserted > 0)
  1745.     MODIFF++;
  1746.   record_insert (point, inserted);
  1747.  
  1748.   close (fd);
  1749.  
  1750.   /* Discard the unwind protect */
  1751.   specpdl_ptr = specpdl + count;
  1752.  
  1753.   if (i < 0)
  1754.     error ("IO error reading %s: %s",
  1755.        XSTRING (filename)->data, err_str (errno));
  1756.  
  1757.  notfound:
  1758.  
  1759.   if (!NULL (visit))
  1760.     {
  1761.       current_buffer->undo_list = Qnil;
  1762. #ifdef APOLLO
  1763.       stat (XSTRING (filename)->data, &st);
  1764. #endif
  1765.       current_buffer->modtime = st.st_mtime;
  1766.       current_buffer->save_modified = MODIFF;
  1767.       current_buffer->auto_save_modified = MODIFF;
  1768.       XFASTINT (current_buffer->save_length) = Z - BEG;
  1769. #ifdef CLASH_DETECTION
  1770.       if (!NULL (current_buffer->filename))
  1771.     unlock_file (current_buffer->filename);
  1772.       unlock_file (filename);
  1773. #endif /* CLASH_DETECTION */
  1774.       current_buffer->filename = filename;
  1775.       /* If visiting nonexistent file, return nil.  */
  1776.       if (st.st_mtime == -1)
  1777.     report_file_error ("Opening input file", Fcons (filename, Qnil));
  1778.     }
  1779.  
  1780.   UNGCPRO;
  1781.   return Fcons (filename, Fcons (make_number (inserted), Qnil));
  1782. }
  1783.  
  1784. DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 5,
  1785.   "r\nFWrite region to file: ",
  1786.   "Write current region into specified file.\n\
  1787. When called from a program, takes three arguments:\n\
  1788. START, END and FILENAME.  START and END are buffer positions.\n\
  1789. Optional fourth argument APPEND if non-nil means\n\
  1790.   append to existing file contents (if any).\n\
  1791. Optional fifth argument VISIT if t means\n\
  1792.   set last-save-file-modtime of buffer to this file's modtime\n\
  1793.   and mark buffer not modified.\n\
  1794. If VISIT is neither t nor nil, it means do not print\n\
  1795.   the \"Wrote file\" message.")
  1796.   (start, end, filename, append, visit)
  1797.      Lisp_Object start, end, filename, append, visit;
  1798. {
  1799.   register int desc;
  1800.   int failure;
  1801.   int save_errno;
  1802.   unsigned char *fn;
  1803.   struct stat st;
  1804.   int tem;
  1805.   int count = specpdl_ptr - specpdl;
  1806. #ifdef VMS
  1807.   unsigned char *fname = 0;    /* If non-0, original filename (must rename) */
  1808. #endif /* VMS */
  1809.  
  1810.   /* Special kludge to simplify auto-saving */
  1811.   if (NULL (start))
  1812.     {
  1813.       XFASTINT (start) = BEG;
  1814.       XFASTINT (end) = Z;
  1815.     }
  1816.   else
  1817.     validate_region (&start, &end);
  1818.  
  1819.   filename = Fexpand_file_name (filename, Qnil);
  1820.   fn = XSTRING (filename)->data;
  1821.  
  1822. #ifdef CLASH_DETECTION
  1823.   if (!auto_saving)
  1824.     lock_file (filename);
  1825. #endif /* CLASH_DETECTION */
  1826.  
  1827.   desc = -1;
  1828.   if (!NULL (append))
  1829.  
  1830. /**
  1831.  **  (sjk)++
  1832.  **/
  1833. #ifdef atarist
  1834.     desc = open (fn, O_RDWR, 0644);
  1835. #else
  1836.     desc = open (fn, O_WRONLY);
  1837. #endif
  1838.  
  1839.   if (desc < 0)
  1840. #ifdef VMS
  1841.     if (auto_saving)    /* Overwrite any previous version of autosave file */
  1842.       {
  1843.     vms_truncate (fn);    /* if fn exists, truncate to zero length */
  1844.     desc = open (fn, O_RDWR);
  1845.     if (desc < 0)
  1846.       desc = creat_copy_attrs (XTYPE (current_buffer->filename) == Lisp_String
  1847.                    ? XSTRING (current_buffer->filename)->data : 0,
  1848.                    fn);
  1849.       }
  1850.     else        /* Write to temporary name and rename if no errors */
  1851.       {
  1852.     Lisp_Object temp_name;
  1853.     temp_name = Ffile_name_directory (filename);
  1854.  
  1855.     if (!NULL (temp_name))
  1856.       {
  1857.         temp_name = Fmake_temp_name (concat2 (temp_name,
  1858.                           build_string ("$$SAVE$$")));
  1859.         fname = XSTRING (filename)->data;
  1860.         fn = XSTRING (temp_name)->data;
  1861.         desc = creat_copy_attrs (fname, fn);
  1862.         if (desc < 0)
  1863.           {
  1864.         /* If we can't open the temporary file, try creating a new
  1865.            version of the original file.  VMS "creat" creates a
  1866.            new version rather than truncating an existing file. */
  1867.         fn = fname;
  1868.         fname = 0;
  1869.  
  1870. /**
  1871.  **  (sjk)++
  1872.  **/
  1873. #ifdef atarist
  1874.         desc = creat (fn, 0644);
  1875. #else
  1876.         desc = creat (fn, 0666);
  1877. #endif
  1878.         if (desc < 0)
  1879.           {
  1880.             /* We can't make a new version;
  1881.                try to truncate and rewrite existing version if any.  */
  1882.             vms_truncate (fn);
  1883.             desc = open (fn, O_RDWR);
  1884.           }
  1885.           }
  1886.       }
  1887.     else
  1888.       desc = creat (fn, 0666);
  1889.       }
  1890. #else /* not VMS */
  1891.   desc = creat (fn, 0666);
  1892. #endif /* not VMS */
  1893.  
  1894.   if (desc < 0)
  1895.     {
  1896. #ifdef CLASH_DETECTION
  1897.       save_errno = errno;
  1898.       if (!auto_saving) unlock_file (filename);
  1899.       errno = save_errno;
  1900. #endif /* CLASH_DETECTION */
  1901.       report_file_error ("Opening output file", Fcons (filename, Qnil));
  1902.     }
  1903.  
  1904.   record_unwind_protect (close_file_unwind, make_number (desc));
  1905.  
  1906.   if (!NULL (append))
  1907.     if (lseek (desc, 0, 2) < 0)
  1908.       {
  1909. #ifdef CLASH_DETECTION
  1910.     if (!auto_saving) unlock_file (filename);
  1911. #endif /* CLASH_DETECTION */
  1912.     report_file_error ("Lseek error", Fcons (filename, Qnil));
  1913.       }
  1914.  
  1915. #ifdef VMS
  1916. /*
  1917.  * Kludge Warning: The VMS C RTL likes to insert carriage returns
  1918.  * if we do writes that don't end with a carriage return. Furthermore
  1919.  * it cannot handle writes of more then 16K. The modified
  1920.  * version of "sys_write" in SYSDEP.C (see comment there) copes with
  1921.  * this EXCEPT for the last record (iff it doesn't end with a carriage
  1922.  * return). This implies that if your buffer doesn't end with a carriage
  1923.  * return, you get one free... tough. However it also means that if
  1924.  * we make two calls to sys_write (a la the following code) you can
  1925.  * get one at the gap as well. The easiest way to fix this (honest)
  1926.  * is to move the gap to the next newline (or the end of the buffer).
  1927.  * Thus this change.
  1928.  *
  1929.  * Yech!
  1930.  */
  1931.   if (GPT > BEG && GPT_ADDR[-1] != '\n')
  1932.     move_gap (find_next_newline (GPT, 1));
  1933. #endif
  1934.  
  1935.   failure = 0;
  1936.   if (XINT (start) != XINT (end))
  1937.     {
  1938.       if (XINT (start) < GPT)
  1939.     {
  1940.       register int end1 = XINT (end);
  1941.       tem = XINT (start);
  1942.       failure = 0 > e_write (desc, &FETCH_CHAR (tem),
  1943.                  min (GPT, end1) - tem);
  1944.       save_errno = errno;
  1945.     }
  1946.  
  1947.       if (XINT (end) > GPT && !failure)
  1948.     {
  1949.       tem = XINT (start);
  1950.       tem = max (tem, GPT);
  1951.       failure = 0 > e_write (desc, &FETCH_CHAR (tem), XINT (end) - tem);
  1952.       save_errno = errno;
  1953.     }
  1954.     }
  1955.  
  1956. #ifndef USG
  1957. #ifndef VMS
  1958. #ifndef BSD4_1
  1959. #ifndef alliant /* trinkle@cs.purdue.edu says fsync can return EBUSY
  1960.            on alliant, for no visible reason.  */
  1961.   /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
  1962.      Disk full in NFS may be reported here.  */
  1963.  
  1964. /**
  1965.  **  (sjk)++
  1966.  **/
  1967. #if !defined(atarist)
  1968.   if (fsync (desc) < 0)
  1969.     failure = 1, save_errno = errno;
  1970. #endif
  1971.  
  1972. #endif
  1973. #endif
  1974. #endif
  1975. #endif
  1976.  
  1977. #if 0
  1978.   /* Spurious "file has changed on disk" warnings have been 
  1979.      observed on Sun 3 as well.  Maybe close changes the modtime
  1980.      with nfs as well.  */
  1981.  
  1982.   /* On VMS and APOLLO, must do the stat after the close
  1983.      since closing changes the modtime.  */
  1984. #ifndef VMS
  1985. #ifndef APOLLO
  1986.   /* Recall that #if defined does not work on VMS.  */
  1987. #define FOO
  1988.   fstat (desc, &st);
  1989. #endif
  1990. #endif
  1991. #endif /* 0 */
  1992.  
  1993.   /* NFS can report a write failure now.  */
  1994.   if (close (desc) < 0)
  1995.     failure = 1, save_errno = errno;
  1996.  
  1997. #ifdef VMS
  1998.   /* If we wrote to a temporary name and had no errors, rename to real name. */
  1999.   if (fname)
  2000.     {
  2001.       if (!failure)
  2002.     failure = (rename (fn, fname) != 0), save_errno = errno;
  2003.       fn = fname;
  2004.     }
  2005. #endif /* VMS */
  2006.  
  2007. #ifndef FOO
  2008.  
  2009. /**
  2010.  **  (sjk)++
  2011.  **/
  2012. #ifdef atarist
  2013.   stat ((char *)fn, &st);
  2014. #else
  2015.   stat (fn, &st);
  2016. #endif
  2017.  
  2018. #endif
  2019.   /* Discard the unwind protect */
  2020.   specpdl_ptr = specpdl + count;
  2021.  
  2022. #ifdef CLASH_DETECTION
  2023.   if (!auto_saving)
  2024.     unlock_file (filename);
  2025. #endif /* CLASH_DETECTION */
  2026.  
  2027.   /* Do this before reporting IO error
  2028.      to avoid a "file has changed on disk" warning on
  2029.      next attempt to save.  */
  2030.   if (EQ (visit, Qt))
  2031.     current_buffer->modtime = st.st_mtime;
  2032.  
  2033.   if (failure)
  2034.     error ("IO error writing %s: %s", fn, err_str (save_errno));
  2035.  
  2036.   if (EQ (visit, Qt))
  2037.     {
  2038.       current_buffer->save_modified = MODIFF;
  2039.       XFASTINT (current_buffer->save_length) = Z - BEG;
  2040.       current_buffer->filename = filename;
  2041.     }
  2042.   else if (!NULL (visit))
  2043.     return Qnil;
  2044.  
  2045.   if (!auto_saving)
  2046.     message ("Wrote %s", fn);
  2047.  
  2048.   return Qnil;
  2049. }
  2050.  
  2051. int
  2052. e_write (desc, addr, len)
  2053.      int desc;
  2054.      register char *addr;
  2055.      register int len;
  2056. {
  2057.   char buf[16 * 1024];
  2058.   register char *p, *end;
  2059.  
  2060.   if (!EQ (current_buffer->selective_display, Qt))
  2061.     return write (desc, addr, len) - len;
  2062.   else
  2063.     {
  2064.       p = buf;
  2065.       end = p + sizeof buf;
  2066.       while (len--)
  2067.     {
  2068.       if (p == end)
  2069.         {
  2070.           if (write (desc, buf, sizeof buf) != sizeof buf)
  2071.         return -1;
  2072.           p = buf;
  2073.         }
  2074.       *p = *addr++;
  2075.       if (*p++ == '\015')
  2076.         p[-1] = '\n';
  2077.     }
  2078.       if (p != buf)
  2079.     if (write (desc, buf, p - buf) != p - buf)
  2080.       return -1;
  2081.     }
  2082.   return 0;
  2083. }
  2084.  
  2085. DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
  2086.   Sverify_visited_file_modtime, 1, 1, 0,
  2087.   "Return t if last mod time of BUF's visited file matches what BUF records.\n\
  2088. This means that the file has not been changed since it was visited or saved.")
  2089.   (buf)
  2090.      Lisp_Object buf;
  2091. {
  2092.   struct buffer *b;
  2093.   struct stat st;
  2094.  
  2095.   CHECK_BUFFER (buf, 0);
  2096.   b = XBUFFER (buf);
  2097.  
  2098.   if (XTYPE (b->filename) != Lisp_String) return Qt;
  2099.   if (b->modtime == 0) return Qt;
  2100.  
  2101. /**
  2102.  **  (sjk)++
  2103.  **/
  2104. #ifdef atarist
  2105.   if (stat ((char *)XSTRING (b->filename)->data, &st) < 0)
  2106. #else
  2107.   if (stat (XSTRING (b->filename)->data, &st) < 0)
  2108. #endif
  2109.  
  2110.     {
  2111.       /* If the file doesn't exist now and didn't exist before,
  2112.      we say that it isn't modified, provided the error is a tame one.  */
  2113.       if (errno == ENOENT || errno == EACCES || errno == ENOTDIR)
  2114.     st.st_mtime = -1;
  2115.       else
  2116.     st.st_mtime = 0;
  2117.     }
  2118.   if (st.st_mtime == b->modtime
  2119.       /* If both are positive, accept them if they are off by one second.  */
  2120.       || (st.st_mtime > 0 && b->modtime > 0
  2121.       && (st.st_mtime == b->modtime + 1
  2122.           || st.st_mtime == b->modtime - 1)))
  2123.     return Qt;
  2124.   return Qnil;
  2125. }
  2126.  
  2127. DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,
  2128.   Sclear_visited_file_modtime, 0, 0, 0,
  2129.   "Clear out records of last mod time of visited file.\n\
  2130. Next attempt to save will certainly not complain of a discrepancy.")
  2131.   ()
  2132. {
  2133.   current_buffer->modtime = 0;
  2134.   return Qnil;
  2135. }
  2136.  
  2137. Lisp_Object
  2138. auto_save_error ()
  2139. {
  2140.   unsigned char *name = XSTRING (current_buffer->name)->data;
  2141.  
  2142.   bell ();
  2143.   message ("Autosaving...error for %s", name);
  2144.   Fsleep_for (make_number (1));
  2145.   message ("Autosaving...error!for %s", name);
  2146.   Fsleep_for (make_number (1));
  2147.   message ("Autosaving...error for %s", name);
  2148.   Fsleep_for (make_number (1));
  2149.   return Qnil;
  2150. }
  2151.  
  2152. Lisp_Object
  2153. auto_save_1 ()
  2154. {
  2155.   return
  2156.     Fwrite_region (Qnil, Qnil,
  2157.            current_buffer->auto_save_file_name,
  2158.            Qnil, Qlambda);
  2159. }
  2160.  
  2161. DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 1, "",
  2162.   "Auto-save all buffers that need it.\n\
  2163. This is all buffers that have auto-saving enabled\n\
  2164. and are changed since last auto-saved.\n\
  2165. Auto-saving writes the buffer into a file\n\
  2166. so that your editing is not lost if the system crashes.\n\
  2167. This file is not the file you visited; that changes only when you save.\n\n\
  2168. Non-nil argument means do not print any message if successful.")
  2169.   (nomsg)
  2170.      Lisp_Object nomsg;
  2171. {
  2172.   struct buffer *old = current_buffer, *b;
  2173.   Lisp_Object tail, buf;
  2174.   int auto_saved = 0;
  2175.   int tried = 0;
  2176.   char *omessage = echo_area_contents;
  2177.   /* No GCPRO needed, because (when it matters) all Lisp_Object variables
  2178.      point to non-strings reached from Vbuffer_alist.  */
  2179.  
  2180.   auto_saving = 1;
  2181.   if (minibuf_level)
  2182.     nomsg = Qt;
  2183.  
  2184.   for (tail = Vbuffer_alist; XGCTYPE (tail) == Lisp_Cons;
  2185.        tail = XCONS (tail)->cdr)
  2186.     {
  2187.       buf = XCONS (XCONS (tail)->car)->cdr;
  2188.       b = XBUFFER (buf);
  2189.       /* Check for auto save enabled
  2190.      and file changed since last auto save
  2191.      and file changed since last real save.  */
  2192.       if (XTYPE (b->auto_save_file_name) == Lisp_String
  2193.       && b->save_modified < BUF_MODIFF (b)
  2194.       && b->auto_save_modified < BUF_MODIFF (b))
  2195.     {
  2196.       /* If we at least consider a buffer for auto-saving,
  2197.          don't try again for a suitable time.  */
  2198.       tried++;
  2199.       if ((XFASTINT (b->save_length) * 10
  2200.            > (BUF_Z (b) - BUF_BEG (b)) * 13)
  2201.           /* A short file is likely to change a large fraction;
  2202.          spare the user annoying messages.  */
  2203.           && XFASTINT (b->save_length) > 5000
  2204.           /* These messages are frequent and annoying for `*mail*'.  */
  2205.           && !EQ (b->filename, Qnil))
  2206.         {
  2207.           /* It has shrunk too much; don't checkpoint. */
  2208.           message ("Buffer %s has shrunk a lot; not autosaving it",
  2209.                XSTRING (b->name)->data);
  2210.           Fsleep_for (make_number (1));
  2211.           continue;
  2212.         }
  2213.       set_buffer_internal (b);
  2214.       if (!auto_saved && NULL (nomsg))
  2215.         message1 ("Auto-saving...");
  2216.       internal_condition_case (auto_save_1, Qt, auto_save_error);
  2217.       auto_saved++;
  2218.       b->auto_save_modified = BUF_MODIFF (b);
  2219.       XFASTINT (current_buffer->save_length) = Z - BEG;
  2220.       set_buffer_internal (old);
  2221.     }
  2222.     }
  2223.  
  2224.   if (tried)
  2225.     record_auto_save ();
  2226.  
  2227.   if (auto_saved && NULL (nomsg))
  2228.     message1 (omessage ? omessage : "Auto-saving...done");
  2229.  
  2230.   auto_saving = 0;
  2231.   return Qnil;
  2232. }
  2233.  
  2234. DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
  2235.   Sset_buffer_auto_saved, 0, 0, 0,
  2236.   "Mark current buffer as auto-saved with its current text.\n\
  2237. No auto-save file will be written until the buffer changes again.")
  2238.   ()
  2239. {
  2240.   current_buffer->auto_save_modified = MODIFF;
  2241.   XFASTINT (current_buffer->save_length) = Z - BEG;
  2242.   return Qnil;
  2243. }
  2244.  
  2245. DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
  2246.   0, 0, 0,
  2247.   "Return t if buffer has been auto-saved since last read in or saved.")
  2248.   ()
  2249. {
  2250.   return (current_buffer->save_modified < current_buffer->auto_save_modified) ? Qt : Qnil;
  2251. }
  2252.  
  2253. /* Reading and completing file names */
  2254. extern Lisp_Object Ffile_name_completion (), Ffile_name_all_completions ();
  2255.  
  2256. DEFUN ("read-file-name-internal", Fread_file_name_internal, Sread_file_name_internal,
  2257.   3, 3, 0,
  2258.   "Internal subroutine for read-file-name.  Do not call this.")
  2259.   (string, dir, action)
  2260.      Lisp_Object string, dir, action;
  2261.   /* action is nil for complete, t for return list of completions,
  2262.      lambda for verify final value */
  2263. {
  2264.   Lisp_Object name, specdir, realdir, val;
  2265.   if (XSTRING (string)->size == 0)
  2266.     {
  2267.       name = string;
  2268.       realdir = dir;
  2269.       if (EQ (action, Qlambda))
  2270.     return Qnil;
  2271.     }
  2272.   else
  2273.     {
  2274.       string = Fsubstitute_in_file_name (string);
  2275.       name = Ffile_name_nondirectory (string);
  2276.       realdir = Ffile_name_directory (string);
  2277.       if (NULL (realdir))
  2278.     realdir = dir;
  2279.       else
  2280.     realdir = Fexpand_file_name (realdir, dir);
  2281.     }
  2282.  
  2283.   if (NULL (action))
  2284.     {
  2285.       specdir = Ffile_name_directory (string);
  2286.       val = Ffile_name_completion (name, realdir);
  2287.       if (XTYPE (val) != Lisp_String)
  2288.     return (val);
  2289.  
  2290.       if (!NULL (specdir))
  2291.     val = concat2 (specdir, val);
  2292. #ifndef VMS
  2293.       {
  2294.     register unsigned char *old, *new;
  2295.     register int n;
  2296.     int osize, count;
  2297.  
  2298.     osize = XSTRING (val)->size;
  2299.     /* Quote "$" as "$$" to get it past substitute-in-file-name */
  2300.     for (n = osize, count = 0, old = XSTRING (val)->data; n > 0; n--)
  2301.       if (*old++ == '$') count++;
  2302.     if (count > 0)
  2303.       {
  2304.         old = XSTRING (val)->data;
  2305.         val = Fmake_string (make_number (osize + count), make_number (0));
  2306.         new = XSTRING (val)->data;
  2307.         for (n = osize; n > 0; n--)
  2308.           if (*old != '$')
  2309.         *new++ = *old++;
  2310.           else
  2311.         {
  2312.           *new++ = '$';
  2313.           *new++ = '$';
  2314.           old++;
  2315.         }
  2316.       }
  2317.       }
  2318. #endif /* Not VMS */
  2319.       return (val);
  2320.     }
  2321.  
  2322.   if (EQ (action, Qt))
  2323.     return Ffile_name_all_completions (name, realdir);
  2324.   /* Only other case actually used is ACTION = lambda */
  2325. #ifdef VMS
  2326.   /* Supposedly this helps commands such as `cd' that read directory names,
  2327.      but can someone explain how it helps them? -- RMS */
  2328.   if (XSTRING (name)->size == 0)
  2329.     return Qt;
  2330. #endif /* VMS */
  2331.   return Ffile_exists_p (string);
  2332. }
  2333.  
  2334. DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 4, 0,
  2335.   "Read file name, prompting with PROMPT and completing in directory DIR.\n\
  2336. Value is not expanded!  You must call expand-file-name yourself.\n\
  2337. Default name to DEFAULT if user enters a null string.\n\
  2338. Fourth arg MUSTMATCH non-nil means require existing file's name.\n\
  2339.  Non-nil and non-t means also require confirmation after completion.\n\
  2340. DIR defaults to current buffer's directory default.")
  2341.   (prompt, dir, defalt, mustmatch)
  2342.      Lisp_Object prompt, dir, defalt, mustmatch;
  2343. {
  2344.   Lisp_Object val, insdef, tem;
  2345.   struct gcpro gcpro1, gcpro2;
  2346.   register char *homedir;
  2347.   int count;
  2348.  
  2349. /**
  2350.  **  (sjk)++ buffer for unix2dos()/dis2unix()
  2351.  **/
  2352. #ifdef atarist
  2353.   char unxdir[128];
  2354. #endif /* atarist */
  2355.  
  2356.  
  2357.   if (NULL (dir))
  2358.     dir = current_buffer->directory;
  2359.   if (NULL (defalt))
  2360.     defalt = current_buffer->filename;
  2361.  
  2362.   /* If dir starts with user's homedir, change that to ~. */
  2363.   homedir = (char *) egetenv ("HOME");
  2364.  
  2365. /**
  2366.  ** (sjk)++
  2367.  **/
  2368. #ifdef atarist
  2369.   _dos2unx(homedir,unxdir);
  2370.   homedir = unxdir;
  2371. #endif
  2372.  
  2373.   if (homedir != 0
  2374.       && XTYPE (dir) == Lisp_String
  2375.       && !strncmp (homedir, XSTRING (dir)->data, strlen (homedir))
  2376.       && XSTRING (dir)->data[strlen (homedir)] == '/')
  2377.     {
  2378.       dir = make_string (XSTRING (dir)->data + strlen (homedir) - 1,
  2379.              XSTRING (dir)->size - strlen (homedir) + 1);
  2380.       XSTRING (dir)->data[0] = '~';
  2381.     }
  2382.  
  2383.   if (insert_default_directory)
  2384.     insdef = dir;
  2385.   else
  2386.     insdef = build_string ("");
  2387.  
  2388. #ifdef VMS
  2389.   count = specpdl_ptr - specpdl;
  2390.   specbind (intern ("completion-ignore-case"), Qt);
  2391. #endif
  2392.  
  2393.   GCPRO2 (insdef, defalt);
  2394.   val = Fcompleting_read (prompt, intern ("read-file-name-internal"),
  2395.               dir, mustmatch,
  2396.               insert_default_directory ? insdef : Qnil);
  2397.  
  2398. #ifdef VMS
  2399.   unbind_to (count);
  2400. #endif
  2401.  
  2402.   UNGCPRO;
  2403.   if (NULL (val))
  2404.     error ("No file name specified");
  2405.   tem = Fstring_equal (val, insdef);
  2406.   if (!NULL (tem) && !NULL (defalt))
  2407.     return defalt;
  2408.   return Fsubstitute_in_file_name (val);
  2409. }
  2410.  
  2411. syms_of_fileio ()
  2412. {
  2413.   Qfile_error = intern ("file-error");
  2414.   staticpro (&Qfile_error);
  2415.   Qfile_already_exists = intern("file-already-exists");
  2416.   staticpro (&Qfile_already_exists);
  2417.  
  2418.   Fput (Qfile_error, Qerror_conditions,
  2419.     Fcons (Qfile_error, Fcons (Qerror, Qnil)));
  2420.   Fput (Qfile_error, Qerror_message,
  2421.     build_string ("File error"));
  2422.  
  2423.   Fput (Qfile_already_exists, Qerror_conditions,
  2424.     Fcons (Qfile_already_exists,
  2425.            Fcons (Qfile_error, Fcons (Qerror, Qnil))));
  2426.   Fput (Qfile_already_exists, Qerror_message,
  2427.     build_string ("File already exists"));
  2428.  
  2429.   DEFVAR_BOOL ("insert-default-directory", &insert_default_directory,
  2430.     "*Non-nil means when reading a filename start with default dir in minibuffer.");
  2431.   insert_default_directory = 1;
  2432.  
  2433.   DEFVAR_BOOL ("vms-stmlf-recfm", &vms_stmlf_recfm,
  2434.     "*Non-nil means write new files with record format `stmlf'.\n\
  2435. nil means use format `var'.  This variable is meaningful only on VMS.");
  2436.   vms_stmlf_recfm = 0;
  2437.  
  2438.   defsubr (&Sfile_name_directory);
  2439.   defsubr (&Sfile_name_nondirectory);
  2440.   defsubr (&Sfile_name_as_directory);
  2441.   defsubr (&Sdirectory_file_name);
  2442.   defsubr (&Smake_temp_name);
  2443.   defsubr (&Sexpand_file_name);
  2444.   defsubr (&Ssubstitute_in_file_name);
  2445.   defsubr (&Scopy_file);
  2446.   defsubr (&Sdelete_file);
  2447.   defsubr (&Srename_file);
  2448.   defsubr (&Sadd_name_to_file);
  2449. #ifdef S_IFLNK
  2450.   defsubr (&Smake_symbolic_link);
  2451. #endif /* S_IFLNK */
  2452. #ifdef VMS
  2453.   defsubr (&Sdefine_logical_name);
  2454. #endif /* VMS */
  2455. #ifdef HPUX_NET
  2456.   defsubr (&Ssysnetunam);
  2457. #endif /* HPUX_NET */
  2458.   defsubr (&Sfile_name_absolute_p);
  2459.   defsubr (&Sfile_exists_p);
  2460.   defsubr (&Sfile_readable_p);
  2461.   defsubr (&Sfile_writable_p);
  2462.   defsubr (&Sfile_symlink_p);
  2463.   defsubr (&Sfile_directory_p);
  2464.   defsubr (&Sfile_modes);
  2465.   defsubr (&Sset_file_modes);
  2466.   defsubr (&Sfile_newer_than_file_p);
  2467.   defsubr (&Sinsert_file_contents);
  2468.   defsubr (&Swrite_region);
  2469.   defsubr (&Sverify_visited_file_modtime);
  2470.   defsubr (&Sclear_visited_file_modtime);
  2471.   defsubr (&Sdo_auto_save);
  2472.   defsubr (&Sset_buffer_auto_saved);
  2473.   defsubr (&Srecent_auto_save_p);
  2474.  
  2475.   defsubr (&Sread_file_name_internal);
  2476.   defsubr (&Sread_file_name);
  2477. }
  2478.